.footer-bottom {
  background-color: #333; /* Dark background for footer */
  color: #fff; /* White text color */
  padding: 3px 0; /* Padding around the footer */
  text-align: center; /* Center-align the text */
  border-radius: 0 0 30px 30px;
  margin-bottom: 5px;
}
/* Intro Section */
.intro {
  text-align: center;
  margin: 18px 0;
}

.intro p {
  font-size: 17px; 
  font-family: serif;
}

/* Social Media Section */
.social-media {
  text-align: center;
  margin-top: 15px; 
  display: flex;
  justify-content: center;
}

.social-media a {
  margin: 0 10px;
}

.social-media img {
  width: 25px;
  height: 25px;
}

/* Bottom Links Section */
.bottom-links {
  text-align: center;
  margin-top: 15px;
}

.bottom-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 14px;
}

.bottom-links a:hover {
  color: #fa7676;
}

.copyright{
  text-align: center;  
  font-size: small;
  margin-top: 8px;
  font-family: serif; 
}
.copyright a{
  color: #ffffff;
  text-decoration: none;
}
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column; /* Stack the columns on small screens */
      align-items: center; /* Center the columns */
    }
  
    .footer-column {
      margin: 20px 0; /* Add margin between stacked columns */
    }
  }
  

  /* //////////////////for scroll buttom to top////////////////////// */
  /* Back to Top Button */
  #back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid #333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
    z-index: 1000;
  }

  /* Button Hover Effect */
  #back-to-top-btn:hover {
    background-color: #333;
  }

  #back-to-top-btn:hover .arrow::before,
  #back-to-top-btn:hover .arrow::after {
    border-bottom: 4px solid white;
    border-right: 4px solid white;
  }

  /* Properly Centered Double Up Arrows */
  .arrow {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow::before,
  .arrow::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-bottom: 4px solid black;
    border-right: 4px solid black;
    transform: rotate(-135deg);
  }

  /* Adjusted spacing to keep both arrows centered */
  .arrow::before {
    top: -2px;
  }

  .arrow::after {
    bottom: -2px;
  }

  /* Button Entrance Animation */
  .btnEntrance {
    animation: btnEntrance 0.5s ease-in-out;
  }

  @keyframes btnEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Button Exit Animation */
  .btnExit {
    animation: btnExit 0.25s ease-in-out;
  }

  @keyframes btnExit {
    from { opacity: 1; }
    to { opacity: 0; transform: translateY(20px); }
  }
  @media (max-width: 768px) {
.arrow::before {
  top: -1px;
}

.arrow::after {
  bottom: -2.0px;
}
}

@media (max-width: 480px) {
.arrow::before {
  top: -0.9px;
}

.arrow::after {
  bottom: -2.0px;
}
}
/* //////////////////////End of scroll button//////////////////////// */


/* //////////////////////Below CSS is for Heart Button//////////////////////// */

/* .heart-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: fill 0.3s;
}
.heart-gray {
  fill: #b3b3b3;
}
.heart-red {
  fill: red;
} */


/* .heart-icon {
  cursor: pointer;
  transition: transform 0.2s ease, fill 0.2s ease;
  vertical-align: middle;
}

.heart-icon:hover {
  transform: scale(1.2);
}

.heart-red {
  fill: red;
}

.heart-gray {
  fill: #ccc;
} */


.heart-icon {
  cursor: pointer;
  transition: fill 0.3s ease, transform 0.2s ease;
  fill: #ccc; /* Default gray */
}

.heart-icon.heart-red {
  fill: red !important;
}

.heart-icon.heart-gray {
  fill: #ccc !important;
}

.heart-icon:hover {
  filter: brightness(1.2); /* Slight glow on hover */
  transform: scale(1.1);    /* Grows a little */
}


